BoxPlotDataSeries

StockSharp.Xaml.Charting.Model.DataSeries

A generic DataSeries which provides data in Min, Lower Quartile, Median, Upper Quartile, Max format for consumption by the .

Hereda de: DataSeries<T, T>

Constructores

BoxPlotDataSeries()

Initializes a new instance of the BoxPlotDataSeries class.

Propiedades

DataSeriesType : DataSeriesType

Gets the DataSeriesType for this DataSeries

HasValues : bool

Gets a value indicating whether this instance has values.

Métodos

Append(T, T[])

Appends an X, Y point to the series

x
The X Value
yValues
The Y Values (depends on series type)
Append(IEnumerable<T>, IEnumerable<T>[])

Appends a list of X, Y points to the series

x
The list of X points
yValues
Lists of Y points (depends on series type)
Append(T, T, T, T, T, T)

Appends an Box-plot point to the series, including X-value, Minimum, Lower Quartile, Median, Upper Quartile, Maximum value

x
The X value
median
The median.
minimum
The minimum.
lowerQuartile
The lower quartile.
upperQuartile
The upper quartile.
maximum
The maximum.
Append(IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>, IEnumerable<T>)

Appends a collection of Box-plot points to the series, including X-values, Minimum, Lower Quartile, Median, Upper Quartile, Maximum values

x
The X value
median
The median.
minimum
The minimum.
lowerQuartile
The lower quartile.
upperQuartile
The upper quartile.
maximum
The maximum.
ClearColumns()

When overridden in a derived class, clears all columns in the Data Series

Clone() : IDataSeries<T, T>

Creates a deep copy of a DataSeries

GetYMaxAt(int, T) : T

When overriden in a derived class, gets the Max(existingYMax, currentMax), where currentMax is the maximum at the specified index

index
The index to the underlying dataset
existingYMax
The existing maximum

Devuelve: The new YMax, which is the Min(existingYMax, currentMax)

GetYMinAt(int, T) : T

When overriden in a derived class, gets the Min(existingYMin, currentMin), where currentMin is the minimum at the specified index

index
The index to the underlying dataset
existingYMin
The existing minimum

Devuelve: The new YMin, which is the Min(existingYMin, currentMin)

RemoveAt(int)

Removes the X,Y values at the specified index

index
The index to remove at
RemoveRange(int, int)

Removes a range of points starting from the specified index

startIndex
Starting index of the range of elements to remove
count
The number of elements to remove
ToHitTestInfo(int) : HitTestInfo

When overridden in a derived class, returns a HitTestInfo instance containing data about the data-point at the specified index

index
The index to the DataSeries

Devuelve: The HitTestInfo

ToPointSeries(ResamplingMode, IndexRange, int, bool, bool?, IRange, IPointResamplerFactory, object) : IPointSeries

Converts the default YValues to an IPointSeries which is used to render XY series

resamplingMode
The desired ResamplingMode
pointRange
The integer Indices range in the parent data-set
viewportWidth
The current width of the viewport
isCategoryAxis
If true, uses the indices to form the resampled X-values, else uses the X-Values themselves
dataIsDisplayedAs2D
If true, then data is presented as a scatter series without relationship between the points, e.g. not a line series
visibleXRange
The XAxis VisibleRange at the time of resampling
factory
The IPointResamplerFactory Instance
pointSeriesArg
Additional parameter to the point series.

Devuelve: A IPointSeries which is used to render XY series